home *** CD-ROM | disk | FTP | other *** search
/ Megahits 5 / Megahits 5 (1994)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso / archive / conv / cpraw.lha / cpraw.rexx < prev    next >
OS/2 REXX Batch file  |  1993-11-06  |  493b  |  29 lines

  1. /* Cabaret-raw-CP converted to 15 bit 320×256 ILBM, to LoRes-lace HAM */
  2.  
  3. address "ADPro"
  4. options results
  5.  
  6. lformat "IFF"
  7. render_type HAM
  8.  
  9. getfile '"Pick a 15 bit ILBM file"'
  10. if rc = 0 then do
  11.  naam = ADPRO_RESULT
  12.  say "Loading" naam
  13.  load naam
  14.  
  15.  say "Scaling data to fit in interlace screen"
  16.  PCT_SCALE 100 200
  17.  
  18.  say "Set screen mode to LoRes-lace (dithering: Floyd-Steinberg)"
  19.  dither 1
  20.  screen_type 6
  21.  
  22.  say "Rendering image"
  23.  execute
  24.  
  25.  naam = naam || '.'
  26.  sformat "IFF"
  27.  save naam image
  28. end
  29.